home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Libris Britannia 4
/
science library(b).zip
/
science library(b)
/
CUGUK
/
PROG_TOO
/
C027B.ZIP
/
TOP
/
MAKEFILE
< prev
next >
Wrap
Text File
|
1990-03-30
|
246b
|
18 lines
#
# Makefile for the optimizer
#
OBJ = main.o io.o util.o sym.o func.o branch.o inst.o opcodes.o \
peep.o health.o data.o
CFLAGS = -O
xtop.ttp : $(OBJ)
cc $(OBJ) -o xtop.ttp
clean:
$(RM) *.o
clobber:
$(RM) *.o xtop.ttp